home *** CD-ROM | disk | FTP | other *** search
- //******************************************************************************
- // VARIAN LED STUDIO v2.00
- // (c) VARIAN SOFTWARE SERVICES NL 1996-1997
- // ALL RIGHTS RESERVED
- //******************************************************************************
-
- unit umatrix;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- ExtCtrls, StdCtrls, vrclass, vrmatrix, vrbltr;
-
- type
- TForm1 = class(TForm)
- Button1: TButton;
- Button2: TButton;
- Timer1: TTimer;
- VrBlotter1: TVrBlotter;
- VrMatrix1: TVrMatrix;
- procedure FormCreate(Sender: TObject);
- procedure Button1Click(Sender: TObject);
- procedure Button2Click(Sender: TObject);
- procedure Timer1Timer(Sender: TObject);
- private
- S: string;
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- const
- IntroText = ' Thank you for using ' +
- '"Varian Led Studio 2.0"...............Don''t '+
- 'forget to register this evaluation copy.............';
-
-
- procedure TForm1.Button1Click(Sender: TObject);
- begin
- Timer1.Enabled := true;
- end;
-
- procedure TForm1.Button2Click(Sender: TObject);
- begin
- Timer1.Enabled := false;
- end;
-
- procedure TForm1.FormCreate(Sender: TObject);
- begin
- S := IntroText;
- end;
-
- procedure TForm1.Timer1Timer(Sender: TObject);
- begin
- if Length(S) > 0 then Delete(S, 1, 1)
- else S := IntroText;
- VrMatrix1.Text := S;
- end;
-
-
- end.
-